crypto/tls.Conn.connectionStateLocked (method)

14 uses

	crypto/tls (current package)
		conn.go#L1622: 	return c.connectionStateLocked()
		conn.go#L1627: func (c *Conn) connectionStateLocked() ConnectionState {
		handshake_client.go#L600: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client.go#L1133: 			if err := c.config.EncryptedClientHelloRejectionVerify(c.connectionStateLocked()); err != nil {
		handshake_client.go#L1202: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client_tls13.go#L623: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L463: 		ss, err := c.config.UnwrapSession(hs.clientHello.sessionTicket, c.connectionStateLocked())
		handshake_server.go#L579: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L713: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L885: 		m.ticket, err = c.config.WrapSession(c.connectionStateLocked(), state)
		handshake_server_tls13.go#L365: 			sessionState, err = c.config.UnwrapSession(identity.label, c.connectionStateLocked())
		handshake_server_tls13.go#L1009: 		m.label, err = c.config.WrapSession(c.connectionStateLocked(), state)
		handshake_server_tls13.go#L1054: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L1081: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {